projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a5161b
)
* eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
author
Ken Raeburn
<raeburn@raeburn.org>
Mon, 20 May 2002 08:05:37 +0000
(08:05 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Mon, 20 May 2002 08:05:37 +0000
(08:05 +0000)
XSYMBOL and name field.
src/eval.c
patch
|
blob
|
history
diff --git
a/src/eval.c
b/src/eval.c
index 7c63a2db4e1870aed6650f4d82550df9b89a9416..0acd7325a85663e4f7a26bbeb7b95755aefef120 100644
(file)
--- a/
src/eval.c
+++ b/
src/eval.c
@@
-1910,7
+1910,7
@@
do_autoload (fundef, funname)
of what files are preloaded and when. */
if (! NILP (Vpurify_flag))
error ("Attempt to autoload %s while preparing to dump",
- XS
YMBOL (funname)->name
->data);
+ XS
TRING (SYMBOL_NAME (funname))
->data);
fun = funname;
CHECK_SYMBOL (funname);
@@
-1949,7
+1949,7
@@
do_autoload (fundef, funname)
if (!NILP (Fequal (fun, fundef)))
error ("Autoloading failed to define function %s",
- XS
YMBOL (funname)->name
->data);
+ XS
TRING (SYMBOL_NAME (funname))
->data);
UNGCPRO;
}